home *** CD-ROM | disk | FTP | other *** search
/ Chip 2003 December / Chip_2003-12_cd1.bin / software / poco / pocosetup.exe / {app} / Poco.exe / 0 / RCDATA / TCUSTOMDICTIONARYEDITDIALOG / TCUSTOMDICTIONARYEDITDIALOG.txt
Text File  |  2003-07-29  |  7KB  |  273 lines

  1. object CustomDictionaryEditDialog: TCustomDictionaryEditDialog
  2.   Left = 603
  3.   Top = 386
  4.   BorderStyle = bsDialog
  5.   Caption = 'Custom Dictionary'
  6.   ClientHeight = 410
  7.   ClientWidth = 386
  8.   Color = clBtnFace
  9.   Font.Charset = DEFAULT_CHARSET
  10.   Font.Color = clWindowText
  11.   Font.Height = -14
  12.   Font.Name = 'MS Sans Serif'
  13.   Font.Style = []
  14.   OldCreateOrder = False
  15.   Position = poScreenCenter
  16.   OnCreate = FormCreate
  17.   DesignSize = (
  18.     386
  19.     410)
  20.   PixelsPerInch = 120
  21.   TextHeight = 16
  22.   object PageControl: TPageControl
  23.     Left = 0
  24.     Top = 0
  25.     Width = 385
  26.     Height = 366
  27.     ActivePage = AddedWordsSheet
  28.     TabIndex = 0
  29.     TabOrder = 0
  30.     object AddedWordsSheet: TTabSheet
  31.       Caption = 'xxAdd&ed Words'
  32.       OnShow = AddedWordsSheetShow
  33.       object AddedWordsExplain: TLabel
  34.         Left = 10
  35.         Top = 10
  36.         Width = 356
  37.         Height = 50
  38.         AutoSize = False
  39.         Caption = 
  40.           'xxThese words will be considered correct during a spell check op' +
  41.           'eration.'
  42.         WordWrap = True
  43.       end
  44.       object IgnoreEditLabel: TLabel
  45.         Left = 10
  46.         Top = 59
  47.         Width = 108
  48.         Height = 16
  49.         Caption = 'xx&Ignore this word:'
  50.         FocusControl = IgnoreEdit
  51.       end
  52.       object IgnoreList: TListBox
  53.         Left = 10
  54.         Top = 112
  55.         Width = 257
  56.         Height = 209
  57.         ItemHeight = 16
  58.         Sorted = True
  59.         TabOrder = 1
  60.         OnClick = IgnoreListClick
  61.       end
  62.       object IgnoreEdit: TEdit
  63.         Left = 10
  64.         Top = 79
  65.         Width = 257
  66.         Height = 21
  67.         TabOrder = 0
  68.         OnChange = IgnoreEditChange
  69.         OnKeyDown = IgnoreEditKeyDown
  70.       end
  71.       object AddIgnoreButton: TButton
  72.         Left = 276
  73.         Top = 79
  74.         Width = 92
  75.         Height = 28
  76.         Caption = 'xx&Add'
  77.         TabOrder = 2
  78.         OnClick = AddIgnoreButtonClick
  79.       end
  80.       object DeleteIgnoreButton: TButton
  81.         Left = 276
  82.         Top = 112
  83.         Width = 92
  84.         Height = 28
  85.         Caption = 'xx&Delete'
  86.         TabOrder = 3
  87.         OnClick = DeleteIgnoreButtonClick
  88.       end
  89.     end
  90.     object AutoCorrectWordsSheet: TTabSheet
  91.       Caption = 'xxA&uto-Correct Pairs'
  92.       ImageIndex = 1
  93.       OnShow = AutoCorrectWordsSheetShow
  94.       object ReplaceEditLabel: TLabel
  95.         Left = 10
  96.         Top = 59
  97.         Width = 67
  98.         Height = 16
  99.         Caption = 'xx&Replace:'
  100.         FocusControl = ReplaceEdit
  101.       end
  102.       object WithEditLabel: TLabel
  103.         Left = 118
  104.         Top = 59
  105.         Width = 41
  106.         Height = 16
  107.         Caption = 'xx&With:'
  108.         FocusControl = WithEdit
  109.       end
  110.       object AutoCorrectWordsExplain: TLabel
  111.         Left = 10
  112.         Top = 10
  113.         Width = 356
  114.         Height = 50
  115.         AutoSize = False
  116.         Caption = 
  117.           'xxThese words will automatically be corrected when encountered d' +
  118.           'uring a spell check.'
  119.         WordWrap = True
  120.       end
  121.       object AutoCorrectList: TListView
  122.         Left = 10
  123.         Top = 112
  124.         Width = 257
  125.         Height = 209
  126.         Columns = <
  127.           item
  128.             Width = 62
  129.           end
  130.           item
  131.             Width = 62
  132.           end>
  133.         HideSelection = False
  134.         ReadOnly = True
  135.         RowSelect = True
  136.         ShowColumnHeaders = False
  137.         SortType = stText
  138.         TabOrder = 2
  139.         ViewStyle = vsReport
  140.         OnSelectItem = AutoCorrectListSelectItem
  141.       end
  142.       object ReplaceEdit: TEdit
  143.         Left = 10
  144.         Top = 79
  145.         Width = 100
  146.         Height = 21
  147.         TabOrder = 0
  148.         OnChange = ReplaceEditChange
  149.         OnKeyDown = ReplaceEditKeyDown
  150.       end
  151.       object WithEdit: TEdit
  152.         Left = 118
  153.         Top = 79
  154.         Width = 149
  155.         Height = 21
  156.         TabOrder = 1
  157.         OnChange = WithEditChange
  158.         OnKeyDown = WithEditKeyDown
  159.       end
  160.       object AddAutoCorrectButton: TButton
  161.         Left = 276
  162.         Top = 79
  163.         Width = 92
  164.         Height = 28
  165.         Caption = 'xx&Add'
  166.         TabOrder = 3
  167.         OnClick = AddAutoCorrectButtonClick
  168.       end
  169.       object DeleteAutoCorrectButton: TButton
  170.         Left = 276
  171.         Top = 112
  172.         Width = 92
  173.         Height = 28
  174.         Caption = 'xx&Delete'
  175.         TabOrder = 4
  176.         OnClick = DeleteAutoCorrectButtonClick
  177.       end
  178.     end
  179.     object ExcludedWordsSheet: TTabSheet
  180.       Caption = 'xx&Excluded Words'
  181.       ImageIndex = 2
  182.       OnShow = ExcludedWordsSheetShow
  183.       object ExcludeWordsExplanation: TLabel
  184.         Left = 10
  185.         Top = 10
  186.         Width = 356
  187.         Height = 48
  188.         AutoSize = False
  189.         Caption = 
  190.           'xxThese words will always be considered incorrect during a spell' +
  191.           ' check operation.'
  192.         WordWrap = True
  193.       end
  194.       object ExcludeEditLabel: TLabel
  195.         Left = 10
  196.         Top = 59
  197.         Width = 118
  198.         Height = 16
  199.         Caption = 'xxE&xclude this word:'
  200.         FocusControl = ExcludeEdit
  201.       end
  202.       object ExcludeList: TListBox
  203.         Left = 10
  204.         Top = 112
  205.         Width = 257
  206.         Height = 209
  207.         ItemHeight = 13
  208.         Sorted = True
  209.         TabOrder = 1
  210.         OnClick = ExcludeListClick
  211.       end
  212.       object ExcludeEdit: TEdit
  213.         Left = 10
  214.         Top = 79
  215.         Width = 257
  216.         Height = 21
  217.         TabOrder = 0
  218.         OnChange = ExcludeEditChange
  219.         OnKeyDown = ExcludeEditKeyDown
  220.       end
  221.       object AddExcludeButton: TButton
  222.         Left = 276
  223.         Top = 79
  224.         Width = 92
  225.         Height = 28
  226.         Caption = 'xx&Add'
  227.         TabOrder = 2
  228.         OnClick = AddExcludeButtonClick
  229.       end
  230.       object DeleteExcludeButton: TButton
  231.         Left = 276
  232.         Top = 112
  233.         Width = 92
  234.         Height = 28
  235.         Caption = 'xx&Delete'
  236.         TabOrder = 3
  237.         OnClick = DeleteExcludeButtonClick
  238.       end
  239.     end
  240.   end
  241.   object OK: TButton
  242.     Left = 284
  243.     Top = 374
  244.     Width = 93
  245.     Height = 28
  246.     Anchors = [akLeft, akBottom]
  247.     Caption = 'xx&OK'
  248.     ModalResult = 1
  249.     TabOrder = 2
  250.   end
  251.   object HelpButton: TButton
  252.     Left = 185
  253.     Top = 374
  254.     Width = 92
  255.     Height = 28
  256.     Caption = 'xxHelp'
  257.     TabOrder = 1
  258.     OnClick = HelpButtonClick
  259.   end
  260.   object DialogControl: TConfigurationDialogCtrl
  261.     OnConfigurationAvailable = DialogControlConfigurationAvailable
  262.     OnCustomDictionaryAvailable = DialogControlCustomDictionaryAvailable
  263.     Top = 304
  264.   end
  265.   object Timer: TTimer
  266.     Enabled = False
  267.     Interval = 5
  268.     OnTimer = TimerTimer
  269.     Left = 32
  270.     Top = 304
  271.   end
  272. end
  273.